home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 494 b | 40 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_REQ2
- --
- -- To correct a bug find by Cyril ADRIAN.
- --
- creation {ANY}
- make
-
- feature {ANY}
-
- ab: ARRAY[BOOLEAN];
-
- make is
- do
- ab := <<true>>;
- r;
- end;
-
- r is
- require
- ab @ 1;
- do
- check
- ab.item(1);
- end;
- ensure
- ab.item(1);
- end;
-
- invariant
-
- ab.first;
-
- end -- TEST_REQ2
-
-
-
-